home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
misc
/
sci
/
MathPlot.lha
/
MathPlot
/
Macros
/
test14.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1993-08-08
|
386 b
|
20 lines
/* test discussion */
address "MPlot_ARexx"
options results
setnumprecision 4
getpoints "cos(x) zero stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end
getpoints "cos(x) max stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end
getpoints "cos(x) turn stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end